Skip to content

docs(cloud): add hourly cost column to paid-tier pricing tables#484

Open
dragnot wants to merge 2 commits into
mainfrom
docs/add-hourly-pricing-column
Open

docs(cloud): add hourly cost column to paid-tier pricing tables#484
dragnot wants to merge 2 commits into
mainfrom
docs/add-hourly-pricing-column

Conversation

@dragnot
Copy link
Copy Markdown
Contributor

@dragnot dragnot commented May 14, 2026

Summary

The Pro and Startup tier pages list a per-hour rate in prose ($0.200/Core/Hour, $0.01/Memory GB/Hour, $0.100/Memory GB/Hour for Startup) but the instance tables only show monthly totals. This PR adds an Hourly Cost column to each instance table so users can:

  • See the unit billing rate at a glance (matches how usage-based billing actually works).
  • Estimate cost for non-24x7 workloads, dev/test, and autoscaling scenarios.
  • Avoid having to mentally divide monthly numbers by 730 to reconcile with the prose.

Changes

  • cloud/startup-tier.md: add Hourly Cost column to the instance pricing table; add a footnote that Monthly Cost = Hourly Cost x 730 hours/month.
  • cloud/pro-tier.md: add Hourly Cost column to both the Standalone and Replicated (HA) instance pricing tables; add the same footnote under Standalone.
  • cloud/enterprise-tier.md: clarify that Enterprise custom pricing is also calculated on a per-hour basis (Core/Hour + Memory GB/Hour), to keep terminology consistent with the other paid tiers.

All hourly figures were derived from the published unit rates and verified against the existing monthly totals (e.g., Pro standalone E2-standard-2 = 2 cores x $0.200 + 8 GB x $0.01 = $0.480/hr x 730 = $350.40/month). Replicated hourly values are existing monthly / 730.

Testing

N/A - documentation-only change. No code, build, or test impact.

Memory / Performance Impact

N/A.

Related Issues

None.

Summary by CodeRabbit

  • Documentation
    • Updated pricing documentation across all service tiers to include hourly cost rates alongside monthly pricing.
    • Added transparent pricing formula showing the monthly-to-hourly conversion (730 hours/month) for clarity.
    • Clarified per-hour pricing calculation methodology for all tier levels.

Review Change Stack

Surface the per-hour rate alongside the existing monthly cost in
Startup and Pro tier instance tables, so users can easily reason about
usage-based billing, partial-day workloads, and autoscaling without
reverse-engineering the 730 hours/month assumption.

- cloud/startup-tier.md: add Hourly Cost column to instance table.
- cloud/pro-tier.md: add Hourly Cost column to Standalone and
  Replicated instance tables.
- cloud/enterprise-tier.md: clarify Enterprise pricing is also
  calculated on a per-hour basis (Core/Hour + Memory GB/Hour).
- Add note: Monthly Cost = Hourly Cost x 730 hours/month.

All hourly figures verified against published rates
($0.200/Core/Hour, $0.01/Memory GB/Hour for Pro;
$0.100/Memory GB/Hour for Startup) and existing monthly totals.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@dragnot dragnot requested review from dudizimber and gkorland May 14, 2026 13:45
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 14, 2026

📝 Walkthrough

Walkthrough

This PR standardizes pricing presentation across all cloud tier documentation by introducing hourly cost rates alongside monthly totals. Each tier's documentation is updated with an explicit pricing formula (Monthly Cost = Hourly Cost × 730 hours/month), replacing generic pricing descriptions with specific hourly and derived monthly costs.

Changes

Cloud Tier Pricing Updates

Layer / File(s) Summary
Enterprise tier hourly pricing language
cloud/enterprise-tier.md
Enterprise tier consultation section reworded to specify per-hour pricing using Core/Hour and Memory GB/Hour rates calculated from custom configuration.
Pro tier standalone and replicated pricing tables
cloud/pro-tier.md
Standalone and Replicated (High Availability) pricing tables expanded to include Hourly Cost columns; table structures and per-instance values updated with explicit Monthly Cost = Hourly Cost × 730 formula.
Startup tier pricing table and formula
cloud/startup-tier.md
Pricing table replaced with expanded version including Hourly Cost column for each instance size; monthly costs derived from hourly rates using the 730 hours/month standard.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~15 minutes

Poem

🐰 A hop through clouds where prices dance,
Hourly rates get their fair chance,
730 moons per month we say,
Multiply those hours—hooray!
Startup, Pro, Enterprise aligned,
Transparent pricing, clearly defined!

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically summarizes the main change: adding hourly cost columns to pricing tables across paid tiers in the cloud documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/add-hourly-pricing-column

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the Cloud DBaaS paid-tier documentation to surface per-hour billing directly in the pricing tables (Startup + Pro), and clarifies that Enterprise pricing is also calculated on an hourly basis for consistency.

Changes:

  • Adds an Hourly Cost column to the Startup tier instance pricing table and includes a “Monthly = Hourly × 730” note.
  • Adds an Hourly Cost column to the Pro tier Standalone and Replicated (HA) pricing tables and includes the same monthly-calculation note for Standalone.
  • Updates Enterprise tier pricing wording to explicitly describe per-hour calculation terminology.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.

File Description
cloud/startup-tier.md Adds hourly pricing alongside monthly totals and a monthly conversion note.
cloud/pro-tier.md Adds hourly pricing to Standalone and Replicated tables; adds monthly conversion note.
cloud/enterprise-tier.md Clarifies Enterprise pricing is also expressed on a per-hour basis.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread cloud/startup-tier.md
Comment on lines +45 to +46
> | 1 GB | 0.75 | $0.100/hr | $73/month* |
> | 2 GB | 1.5 | $0.200/hr | $146/month* |
Comment thread cloud/pro-tier.md Outdated
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@cloud/startup-tier.md`:
- Around line 45-46: The monthly price rows that end with an asterisk (the table
lines containing "1 GB | 0.75 | $0.100/hr | $73/month*" and "2 GB | 1.5 |
$0.200/hr | $146/month*") include a `*` footnote marker but there is no footnote
defined; either remove the trailing `*` from those monthly price cells or add a
short footnote line below the table (e.g., "* Estimated monthly cost based on
730 hours") to define the marker so the table is consistent and the marker is
explained.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 1109bd08-d691-4580-831d-8647e0b8f17c

📥 Commits

Reviewing files that changed from the base of the PR and between f7229b8 and 609c19e.

📒 Files selected for processing (3)
  • cloud/enterprise-tier.md
  • cloud/pro-tier.md
  • cloud/startup-tier.md

Comment thread cloud/startup-tier.md
Comment on lines +45 to +46
> | 1 GB | 0.75 | $0.100/hr | $73/month* |
> | 2 GB | 1.5 | $0.200/hr | $146/month* |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Remove or define the * footnote marker in monthly prices.

Line 45 and Line 46 use *, but there’s no corresponding footnote definition in this section. Either remove the marker or add a short footnote line.

Suggested doc fix
-> | 1 GB | 0.75 | $0.100/hr | $73/month* |
-> | 2 GB | 1.5 | $0.200/hr | $146/month* |
+> | 1 GB | 0.75 | $0.100/hr | $73/month |
+> | 2 GB | 1.5 | $0.200/hr | $146/month |
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
> | 1 GB | 0.75 | $0.100/hr | $73/month* |
> | 2 GB | 1.5 | $0.200/hr | $146/month* |
> | 1 GB | 0.75 | $0.100/hr | $73/month |
> | 2 GB | 1.5 | $0.200/hr | $146/month |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@cloud/startup-tier.md` around lines 45 - 46, The monthly price rows that end
with an asterisk (the table lines containing "1 GB | 0.75 | $0.100/hr |
$73/month*" and "2 GB | 1.5 | $0.200/hr | $146/month*") include a `*` footnote
marker but there is no footnote defined; either remove the trailing `*` from
those monthly price cells or add a short footnote line below the table (e.g., "*
Estimated monthly cost based on 730 hours") to define the marker so the table is
consistent and the marker is explained.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants